home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / web / spiderweb / src / master / newdefs.awk < prev    next >
Text File  |  1989-04-07  |  195b  |  12 lines

  1. ## Used to convert old Levy CWEB style definitions to Spidery WEB definitions
  2. /#d|@d/ {
  3.     for (i=1; i<NF; i++) {
  4.         if ($i=="#d"||$i=="@d") {
  5.             $(i+1) =  $(i+1) " ="
  6.         }
  7.     }
  8.     print
  9.     next
  10. }
  11. {print}
  12.